home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / cgraphix / iabs.c < prev    next >
Text File  |  1986-05-09  |  165b  |  11 lines

  1. /* «RM120»«PL99999»«TS4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76» */
  2. #include    <stdio.h>
  3.  
  4. int iabs(i)
  5. int        i;
  6. {
  7.     return((i < 0) ? -i : i);
  8. }
  9.  
  10.  
  11.